home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / www / IBClock_V1_0.lha / clock.ibrx next >
Text File  |  1997-06-29  |  4KB  |  86 lines

  1. /************************************************************************/
  2. /*                                                                      */
  3. /*        $VER: clock.ibrx V1.0 ©1997 by Campino            */
  4. /*                                    */
  5. /************************************************************************/
  6. /*                                    */
  7. /* Startet die Uhr von der Workbench und holt sie in den IBrowse Screen */
  8. /*                                    */
  9. /* Start the clock from the workbench and displays it in the IBrowse S. */
  10. /*                                    */
  11. /*      Copyright ©1997 by Campino (campino@ul.german-online.de) !      */
  12. /*                                    */
  13. /************************************************************************/
  14.  
  15. /************************************************************************/
  16. /*                                    */
  17. /* Installation:                            */
  18. /*                                    */
  19. /* 1) Erzeuge ein Rexx Verzeichnis im IBrowse Verzeichnis.        */
  20. /* 2) Kopiere das clock.ibrx in das Rexx Verzeichnis.            */
  21. /* 3) Starte IBrowse, gehe zum Menuepunkt Einstellungen/Allgemeines    */
  22. /* 4) Klicke auf Rexx und dann auf Neu                    */
  23. /* 5) Gib bei Name z.b. Clock ein und wähle das clock.ibrx File im     */
  24. /*    Makro Eingabefeld !                        */
  25. /* 6) Klicke auf OK und speichere dann die Einstellungen ab !        */
  26. /* 7) Fertig ! Gehe nun zum Menuepunkt Rexx und waehle Clock an, nun    */
  27. /*    muesste die Uhr im IBrowse Screen zu sehen sein :)        */
  28. /*                                    */
  29. /* Installation:                            */
  30. /*                                    */
  31. /* 1) Create a directory called Rexx in the IBrowse directory.        */
  32. /* 2) Copy the clock.ibrx file in the Rexx directory of IBrowse.    */
  33. /* 3) Start IBrowse, go to the Menue Settings/General            */
  34. /* 4) Go to Rexx and then click on the New gadget            */
  35. /* 5) In the Name field you can enter Clock. Choose the clock.ibrx    */
  36. /*    file in the Macro field !                        */
  37. /* 6) Click on the OK gadget and save your settings !            */
  38. /* 7) Ready ! Go to the Menue Rexx and choose Clock. Now the clock must */
  39. /*    appear on the IBrowse Screen :)                    */
  40. /*                                    */
  41. /************************************************************************/
  42.  
  43. /************************************************************************/
  44. /*                                    */
  45. /* History                                */
  46. /*                                    */
  47. /* V1.0 (29.06.1996) - Mainrelease !                    */
  48. /*                                    */
  49. /* FOR BUG-REPORTS OR ANYTHING OTHER FEEL FREE TO CONTACT ME VIA EMAIL! */
  50. /* EMAIL: CAMPINO@UL.GERMAN-ONLINE.DE                     */
  51. /*                                    */
  52. /************************************************************************/
  53.  
  54. /**********************************************
  55.  *  Einstellungen ! - Ändere was Du willst !  *
  56.  **********************************************
  57.  *  Settings ! - Change what you want !       *
  58.  **********************************************/
  59.  
  60. IBrowseScreen=IBrowse        /* IBrowse Public Screen Name */
  61.                 /* IBrowse Public Screen Name */
  62.  
  63. ClockPath1=sys            /* Name der Partition, hier sys: 
  64.                    angabe OHNE (!!!) ":" !!!!!!!!!!! */
  65.                 /* Name of partition, here sys: 
  66.                    WITHOUT (!!!) ":" !!!!!!!!!!!!!!! */
  67.  
  68. ClockPath2=utilities        /* Name des Verzeichnisses, hier utilities/
  69.                    angabe OHNE (!!!) "/" !!!!!!!!!!! */
  70.                 /* Name of directory, here utilities/
  71.                    WITHOUT (!!!) "/" !!!!!!!!!!!!!!! */
  72.  
  73. /************************************
  74.  *  Und nun - Ändere NICHTS mehr !  *
  75.  ************************************
  76.  *  And now - Change NOTHING more ! *
  77.  ************************************/
  78.  
  79. address command ""||ClockPath1||":"||ClockPath2||"/clock pubscreen "||IBrowseScreen||" digital format 2 top 0 left 9999"
  80.  
  81. /************************************************************************/
  82. /*                                    */
  83. /*                 END                    */
  84. /*                                    */
  85. /************************************************************************/
  86.